home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Developer Essentials / DTS Sample Code / System 7.0 Samples / MacShell / teCDEF.a < prev    next >
Encoding:
Text File  |  1991-12-04  |  411 b   |  28 lines  |  [TEXT/MPS ]

  1.         include    'traps.a'
  2. ;
  3. ; Apple Macintosh Developer Technical Support
  4. ;
  5. ; File:        teCDEF.a
  6. ; Written by:  Eric Soldan
  7. ;
  8. ; Copyright © 1990-1991 Apple Computer, Inc.
  9. ; All rights reserved.
  10. ;
  11. ;
  12.  
  13.         case    on
  14.  
  15.         seg    'teCDEF'
  16. jmpInstruction    PROC
  17.         jsr    mayBreak
  18.         movea.l    procPtr,A0
  19.         jmp    (A0)
  20. procPtr        dc.l    0
  21. mayBreak        rts        ;Put a _Debugger statement in front
  22.                 ;of the rts if you need to break.
  23.  
  24.         ENDP
  25.  
  26.         END 
  27.  
  28.